A good answer might be:

No.


Syntax of Variable Declaration

Recall that syntax means the grammar of a computer language. We can talk about the syntax of just a small part of a program, such as the syntax of variable declaration.

A variable declaration may be made in several ways:

dataType   variableName;
dataType   variableName  =  initialValue ;
dataType   variableNameOne, variableNameTwo ;
dataType   variableNameOne  =  initialValueOne, 
           variableNameTwo  =  initialValueTwo ;

QUESTION 5:

Is the following declaration correct?

int answer;